home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DJEMU106.ARJ / E76.CC < prev    next >
C/C++ Source or Header  |  1991-04-25  |  260b  |  20 lines

  1. #include "emu.h"
  2. #include "rmov.h"
  3.  
  4. void emu_76()
  5. {
  6.   if (st().tag == TW_E)
  7.     exception(EX_SU);
  8.   if (modrm > 0277)
  9.   {
  10.     emu_bad();
  11.   }
  12.   else
  13.   {
  14.     // fbstp
  15.     r_mov(st(), (char *)get_modrm());
  16.     st().tag = TW_E;
  17.     top++;
  18.   }
  19. }
  20.